#!/bin/bash
# Printing a stack trace from the stackdump file
# Script written by Peter Lundén and Pontus Nyman

for file in *.dot ; do echo `basename $file .dot`.png; dot -Tpng $file > `basename $file .dot`.png; done


exit
